e6005e9466f1edd812ac45a3ec64540ac113f857,dg-core/src/main/java/org/finra/datagenerator/engine/scxml/tags/boundary/BoundaryVarchar.java,BoundaryVarchar,negativeCaseVarchar,#boolean#number#number#,128
Before Change
if (maxLen != minLen) { // if they are the same, only need to add one
variableValue.add(varcharMin.toString());
}
variableValue.add(varcharMax.toString());
} catch (NoSuchMethodException | InvocationTargetException | IllegalAccessException e) {
After Change
m.invoke(eq, varcharMax, maxLen + 1);
m.invoke(eq, varcharMin, minLen);
val = allCaps ? varcharMin.toString().toUpperCase() : varcharMin.toString();
if (maxLen != minLen) { // if they are the same, only need to add one
variableValue.add(val);
}
val = allCaps ? varcharMax.toString().toUpperCase() : varcharMax.toString();
variableValue.add(val);
} catch (NoSuchMethodException | InvocationTargetException | IllegalAccessException e) {
e.printStackTrace();